web3.js web3.eth.getBlockTransactionCount
web3.eth.getBlockTransactionCount(blockHashOrBlockNumber [, callback])
与えられたブロックのトランザクション数を返します。
パラメータ
1. String|Number
ブロック番号またはブロックハッシュ
"genesis"
"latest"
"pending"
2. Function
オプショナル
コールバック
第一引数に error オブジェクト、第二引数に result オブジェクトが渡されます。
戻り値
Number を返す Promise オブジェクト
与えられたブロックのトランザクション数
サンプル
code:example.js
web3.eth.getBlockTransactionCount("0x407d73d8a49eeb85d32cf465507dd71d507100c1")
.then(console.log);
1
参考